home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / hdm426.arc / UPDATE.BAT < prev    next >
DOS Batch File  |  1990-06-14  |  735b  |  22 lines

  1. echo off
  2. echo      This batch file is for updating an already installed Hard Disk Menu
  3. echo               Press Ctrl-Break to cancel or Enter to continue...
  4. pause
  5. if x%1 == x goto err
  6. copy HDM.bat %1
  7. copy *.doc %1
  8. copy *.exe %1
  9. if exist %1\hdmenu.exe del %1\hdmenu.exe
  10. if exist %1\hdmenu.com del %1\hdmenu.com
  11. if exist %1\hdmenu.chn del %1\hdmenu.chn
  12. if exist %1\hdmenu.000 del %1\hdmenu.000
  13. if exist %1\hdmenu.tgl ren %1\hdmenu.tgl hdm.cfg
  14. if exist %1\hdmenu.txt ren %1\hdmenu.txt hdm.000
  15. if exist %1\hdmenu.t?? ren %1\hdmenu.t?? hdm.0??
  16. echo                         HDM IV update complete.
  17. goto exit
  18. :err
  19. echo     You must enter the drive and directory containing HDM
  20. echo         example:  UPDATE C:\HDM
  21. :exit
  22.